home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software of the Month Club 2000 October
/
Software of the Month - Ultimate Collection Shareware 277.iso
/
pc
/
PROGRAMS
/
UTILITY
/
WINLINUX
/
DATA1.CAB
/
usr_-_Usr_Files
/
INCLUDE
/
AR.H
< prev
next >
Wrap
C/C++ Source or Header
|
1999-09-17
|
292b
|
21 lines
/* Typed in by Richard */
/* minor changes for linux */
#ifndef _AR_H
#define _AR_H
#define ARMAG "!<arch>\n"
#define SARMAG 8
#define ARFMAG "`\n"
struct ar_hdr {
char ar_name[16],
ar_date[12],
ar_uid[6],
ar_gid[6],
ar_mode[8],
ar_size[10],
ar_fmag[2];
};
#endif /* _AR_H */